home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / comm / net / tf02.lha / TinyFugue / tf-lib / tfrc < prev    next >
Text File  |  1995-08-12  |  1KB  |  49 lines

  1. ;;;; This file is not required, but contains examples of commands you
  2. ;;;; might want to use in your personal configuration file (~/.tfrc).
  3. ;;;; Feel free to customize these commands to your own tastes.
  4.  
  5. ;;; In some versions of xterm, scrollbars won't work unless you do this.
  6. ;;; (see /help xterm)
  7. /if /test TERM    =~ "xterm"%; /then /set TERM=vt100%; /endif
  8.  
  9. ;;; Turn on windowing mode.
  10. /visual on
  11.  
  12. ;;; Interpret ANSI attributes codes from server, and strip other codes
  13. ;;; (works on any terminal).
  14. /set emulation=ansi_attr
  15.  
  16. ;;; Turn on paging
  17. /more on
  18.  
  19. ;;; Turn on introductory MUD text suppression.
  20. /quiet on
  21.  
  22. ;;; Disable old-style slash interpretation
  23. ;;; I recommend this unless you have old macros containing multiple slashes.
  24. ; /set oldslash=off
  25.  
  26. ;;; Enter the directory where you keep your tf files.
  27. /cd ~/tf-dir
  28.  
  29. ;;; Define default filenames for /load*, /save*, and /log commands.
  30. /def MACROFILE    = ~/tf-dir/macros.tf
  31. /def HILITEFILE    = ~/tf-dir/hilite.tf
  32. /def GAGFILE    = ~/tf-dir/gag.tf
  33. /def TRIGFILE    = ~/tf-dir/trig.tf
  34. /def BINDFILE    = ~/tf-dir/bind.tf
  35. /def HOOKFILE    = ~/tf-dir/hook.tf
  36. /def WORLDFILE    = ~/tf-dir/world.tf
  37. /def LOGFILE    = tiny.log
  38.  
  39.  
  40. ;;; Load files.
  41. ;;; Only useful if you have these files, of course.
  42. ; /loadworld
  43. ; /loadhilite
  44. ; /loadgag
  45. ; /loaddef
  46. ; /loadbind
  47. ; /loadtrig
  48.  
  49.